home *** CD-ROM | disk | FTP | other *** search
- /* ARexx - Script for DiskMaster and Fastview */
-
- /*
- ** $VER: FastDMView.rexx 3.0 (98-09-26) Rudolph Riedel
- ** rriedel@on-luebeck.de
- */
-
- OPTIONS RESULTS
-
- parse arg Port
-
- Fastview="Tools:Fastview"
-
- namelist=" "
- count=0
- viewlist.count=" "
-
- Address VALUE Port
-
- Status P
- path=Result
- DirList sel file
-
- do i=1 to list.name.0
- namelist=namelist list.name.i
- if length(namelist) > 500 then
- do
- viewlist.count=namelist
- namelist=" "
- count=count+1
- viewlist.count=" "
- end
- end
-
- viewlist.count=namelist
-
- Pragma pragma('d', path)
-
- do i=0 to count
- viewlist.i=delstr(viewlist.i,1,2)
- Address Command Fastview viewlist.i
- end
- Deselect "*"
-